Sha256: 74c4360a20aec3b2dfdcdb85aca7e063d3d618034cafbfcc781fba6d5713eab7
Contents?: true
Size: 791 Bytes
Versions: 3
Compression:
Stored size: 791 Bytes
Contents
#!/bin/bash function e { echo '' echo '----------------------------------------' echo $1 echo '----------------------------------------' } [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" e "Normal spec" spec spec/active_record/blueprints_spec.rb e "Without transactions" NO_TRANSACTIONS=true spec spec/active_record/blueprints_spec.rb e "With no db" spec spec/no_db/blueprints_spec.rb e "With Test::Unit" rake rspec_to_test ruby test/blueprints_test.rb e "With Cucumber" cucumber features/blueprints.feature e "With Rails 3" rvm 1.8.7 RAILS=3 rspec spec/active_record/blueprints_spec.rb e "With ruby 1.9.1" rvm 1.9.1 spec spec/active_record/blueprints_spec.rb e "With ruby 1.8.6" rvm 1.8.6 spec spec/active_record/blueprints_spec.rb rvm system
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
blueprints-0.8.2 | spec/test_all.sh |
blueprints-0.8.1 | spec/test_all.sh |
blueprints-0.8.0 | spec/test_all.sh |