On Tue, Dec 2, 2008 at 10:00 AM, Peter Nicolai Motzfeldt
<motzfeldt at gmail.com> wrote:> Hi, I am trying to use Rspec together with FunFX for Flex testing. To ease
> the number of tests and the functionality each test does, I would like to
> run all the it "shoulds..." in sequence.
>
> This works just fine, but the creation of FunFX is created after each it
> "should..." and no wonder since I create it in the before method.
>
> But my question is where should I put the two lines of code that creates an
> instance of FunFx so that all the it "should .. " uses the same
@flex
> instance, that should be created just once in for each describe?
before(:all)
http://rspec.info/documentation/before_and_after.html
Cheers,
David
>
> describe "DemoApp" do
> before do
> browser.goto(DEMO_APP)
> @flex = browser.flex_app(''DemoAppId'',
''DemoAppName'')
> end
>
> it "should click on a checkbox" do
> # do somthing
> end
>
> it "should assert that it is checked" do
> # do something
> end
> end
>
> - Peter
>
> _______________________________________________
> rspec-users mailing list
> rspec-users at rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users
>