Sergio,
I believe you need to make text an instance variable:
@text = "string here"
Or you could use a let block:
let(:text) do
"string "here"
end
Then you could continue to reference the text variable as you do now.
Jon Homan
On Wed, Apr 27, 2011 at 2:55 PM, Sergio Ruiz <[email protected]> wrote:
> i am setting up a few objects that are interrelated for use in an rspec
> test..
>
> something like:
>
> describe Dimension do
>
> before(:each) do
> text = "string here"
> end
>
> it "should puts string" do
> puts text
> end
>
> end
>
> when i run this, i get an error: undefined local variable or method
> `text'
>
> am doing something wrong?
>
> thanks!
>
> --
> Posted via http://www.ruby-forum.com/.
> _______________________________________________
> rspec-users mailing list
> [email protected]
> http://rubyforge.org/mailman/listinfo/rspec-users
>
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users