1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

access check not necessary if it doesn't matter if we're in contexts anymore

This commit is contained in:
Charles Lowell 2010-05-27 19:30:43 +03:00
parent 216ea6264e
commit 00dad84dcf

View file

@ -9,11 +9,4 @@ describe C::Context do
C::Context::GetEntered().should be_nil
end
it "can determine if there is a current context" do
C::Context::InContext().should be(false)
Context.open do
C::Context::InContext().should be(true)
end
end
end