Git Product home page Git Product logo

rtomayko's Introduction

RTomayko

Simple acceptance testing, that skips all the tests after a failing test. This is built on RSpec2 and leverages RSpec2’s metadata.

Installation

TBD

Usage

Here’s some sample test:

(DocumentationFormatter)

Doing a simple test
  this test will run
  this test will run too
  this test will fail (FAILED - 1)
  this test will be skipped
  this test will be skipped too

Failures:
  1) this test will fail (FAILED -1)
     expected true to be false

Finished in 0.71876 seconds
5 examples, 1 failure, 2 skipped

(ProgressFormatter)

..F--

Failures:
  1) this test will fail (FAILED -1)
     expected true to be false

Finished in 0.71876 seconds
5 examples, 1 failure, 2 skipped

Here’s the code for this:

require 'rtomayko'

describe "Doing a simple test", :type => :rtomayko do
  it "this test will run" do
    true.should be_true
  end

  it "this test will run too" do
    true.should be_true
  end

  it "this test will fail" do
    true.should be_false
  end

  it "this test will be skipped" do
    raise "will not be run!"
  end

  it "this test will be skipped too" do
    raise "will not be run!"
  end
end

License

Please see MIT-LICENSE for more details.

Copyright © 2010 Pedro Belo, Terence Lee, Ryan Tomayko

rtomayko's People

Contributors

atmos avatar hone avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

atmos

rtomayko's Issues

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.