Sha256: 1fba4f6ca733ba7f5920dfe02c3deb6f571ec36ca238c98b13678c58a9875aea
Contents?: true
Size: 398 Bytes
Versions: 13
Compression:
Stored size: 398 Bytes
Contents
require 'spec_helper' require 'tempfile' describe "Some another spec", :feature => ["Some Feature"], :severity => :normal do before(:suite) do puts "before suite" end after(:suite) do puts "after suite" end it "10 cannot be greater than 19", :story => ["Some story"] do expect(10).to be > 19 end it "4 must not be equal to 5" do expect(5).to be eql(4) end end
Version data entries
13 entries across 13 versions & 1 rubygems