mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
23 lines
418 B
Crystal
23 lines
418 B
Crystal
require "../spec_helper"
|
|
|
|
class Base; end
|
|
|
|
module SomeModule; end
|
|
|
|
Spectator.describe "Subject" do
|
|
subject { Base.new }
|
|
|
|
context "nested" do
|
|
it "inherits the parent explicit subject" do
|
|
expect(subject).to be_a(Base)
|
|
end
|
|
end
|
|
|
|
context "module" do
|
|
describe SomeModule do
|
|
it "sets the implicit subject to the module" do
|
|
expect(subject).to be(SomeModule)
|
|
end
|
|
end
|
|
end
|
|
end
|