From 00dad84dcf07da34292b3d5bc03229c4c108e5cf Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Thu, 27 May 2010 19:30:43 +0300 Subject: [PATCH] access check not necessary if it doesn't matter if we're in contexts anymore --- spec/ext/cxt_spec.rb | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/spec/ext/cxt_spec.rb b/spec/ext/cxt_spec.rb index 51c9399..5652bf6 100644 --- a/spec/ext/cxt_spec.rb +++ b/spec/ext/cxt_spec.rb @@ -8,12 +8,5 @@ describe C::Context do it "should not have a current context if no context is open" 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 \ No newline at end of file