fix references (again)

quite tricky logic, but now outputting at lowest level, as intended
This commit is contained in:
Torsten Ruger
2015-06-15 09:07:16 +03:00
parent 4853f944ef
commit 224bd84b01
4 changed files with 24 additions and 11 deletions

View File

@ -23,3 +23,13 @@ module Checker
assert_equal should , out
end
end
class ObjectWithAttributes
def initialize
@name = "some name"
@number = 1234
end
attr_accessor :extra , :volotile
end
OBJECT_STRING = "ObjectWithAttributes(:name => 'some name', :number => 1234)"
Sof::Volotile.add(ObjectWithAttributes , [:volotile])