Am trying to evaluating the below code using rspec.
Given :
# book = ...
Rails.logger.info book.inspect
The above code prints the value of return type is boolean i.e {:foo=>false}
eval(book[:foo]).should be_false
but that doesn't seem to work. While trying to run rspec, it throws the following exception:
Failure/Error: eval(book[:foo]).should be_false TypeError: can't convert false into String
So, how can i evaluate a boolean to a method, such as my final result would be the equivalent ?
evalhere? What are you trying to achieve? I guess simplebook[:foo].should be_falseshould be enough. The reason why you're getting an error is thatevalaccepts a string as a parameter and evaluates this string as a Ruby code. – KL-7 Jul 23 '12 at 10:25