mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
14 lines
223 B
Crystal
14 lines
223 B
Crystal
|
require "./spec_helper"
|
||
|
|
||
|
class Base; 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
|
||
|
end
|