Giter Site home page Giter Site logo

fixture_background's Introduction

Fixture Backgrounds

Generate fixtures from factories in you testcode to speedup test-runs!

Requires shoulda 2.11.3 (exact version for now - sorry)

[email protected] 20110207

Usage

see test/rails3 for a demo usage

in test_helper.rb:

require 'fixture_background'

class ActiveSupport::TestCase
  include ::FixtureBackground::ActiveSupport::TestCase
end

in some_test.rb:

require 'test_helper'

class TestTest < ActiveSupport::TestCase
  background do
    @hase = Hase.create(:name => "bunny")
  end

  context "with thies" do
    background do
      @thies = Person.create(:name => "thies")
    end

    should "be cool" do
      assert @hase
      assert @thies
      assert_nil @manuel
      assert_nil @norman
      assert_equal 1, Person.count
    end

    context "with manuel" do
      background do
        @manuel = Person.create(:name => "manuel")
      end

      should "be cool" do
        assert @hase
        assert @thies
        assert @manuel
        assert_nil @norman
        assert_equal 2, Person.count
      end

      context "with norman" do
        background do
          @norman = Person.create(:name => "norman")
        end

        should "be cool" do
          assert @hase
          assert @thies
          assert @manuel
          assert @norman
          assert_equal 3, Person.count
        end
      end
    end

    should "nother truth" do
      assert @hase
      assert @thies
      assert_nil @manuel
      assert_nil @norman
      assert_equal 1, Person.count
    end
  end
end

fixture_background's People

Contributors

skorfmann avatar

Stargazers

 avatar Thorsten Böttger avatar Florian Munz avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.