shard-spectator/spec/rspec/expectations/subject_spec.cr
Michael Miller 596f7e87c8 Formatting
2020-01-17 09:27:48 -07:00

13 lines
195 B
Crystal

require "../../spec_helper"
class Base; end
Spectator.describe "Subject" do
subject() { Base.new }
describe "#foo" do
it "bar" do
expect(subject).to be_a(Base)
end
end
end