Skip to content

Instantly share code, notes, and snippets.

@cwgem
Created July 27, 2011 22:04
Show Gist options
  • Save cwgem/1110483 to your computer and use it in GitHub Desktop.
Save cwgem/1110483 to your computer and use it in GitHub Desktop.
席の問題
require "test/unit"
class ObjectMangling
attr_accessor :seki
def remove
remove_instance_variable(:@seki)
end
end
class TestLibraryFileName < Test::Unit::TestCase
def test_remove_variable
myclass = ObjectMangling.new
myclass.seki = true
myclass.remove
assert_equal true, myclass.seki, "おめえの席ねぇから!!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment