Test mock scope

This commit is contained in:
Michael Miller 2022-06-01 22:11:32 -06:00
parent 3f4216a271
commit 8fbcbe8b73
No known key found for this signature in database
GPG Key ID: 32B47AE8F388A1FF
1 changed files with 54 additions and 0 deletions

View File

@ -257,4 +257,58 @@ Spectator.describe "Mock DSL", :smoke do
end
end
end
describe "scope" do
class Scope
def scope
:original
end
end
mock(Scope, scope: :outer)
it "finds a mock in the same scope" do
fake = mock(Scope)
expect(fake.scope).to eq(:outer)
end
context "inner1" do
mock(Scope, scope: :inner)
it "uses the innermost defined mock" do
fake = mock(Scope)
expect(fake.scope).to eq(:inner)
end
context "nested1" do
mock(Scope, scope: :nested)
it "uses the nested defined mock" do
fake = mock(Scope)
expect(fake.scope).to eq(:nested)
end
end
context "nested2" do
it "finds a mock from a parent scope" do
fake = mock(Scope)
expect(fake.scope).to eq(:inner)
end
end
end
context "inner2" do
it "finds a mock from a parent scope" do
fake = mock(Scope)
expect(fake.scope).to eq(:outer)
end
context "nested3" do
it "finds a mock from a grandparent scope" do
fake = mock(Scope)
expect(fake.scope).to eq(:outer)
end
end
end
end
end