Skip to content

Commit

Permalink
Feature: minitest spec sanity
Browse files Browse the repository at this point in the history
  • Loading branch information
jwo committed Apr 24, 2012
1 parent 8a5260f commit 7fc6053
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: ruby
rvm:
- 1.8.7
- 1.9.3
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
6 changes: 6 additions & 0 deletions Gemfile
@@ -0,0 +1,6 @@
source 'http://rubygems.org'

gem 'rake'
gem 'minitest'
gem "activesupport"
gem "i18n"
16 changes: 16 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,16 @@
GEM
remote: http://rubygems.org/
specs:
activesupport (3.0.0)
i18n (0.6.0)
minitest (2.12.1)
rake (0.9.2.2)

PLATFORMS
ruby

DEPENDENCIES
activesupport
i18n
minitest
rake
5 changes: 3 additions & 2 deletions README.md
@@ -1,4 +1,5 @@
Episode2
Episode1
========

Course Coming Soon
Course Launching Soon at [Ruby Off Rails](http://rubyoffrails.com)
This is a placeholder until the class launches
10 changes: 10 additions & 0 deletions rakefile.rb
@@ -0,0 +1,10 @@
require "rubygems"
require "bundler/setup"
require 'rake/testtask'

Rake::TestTask.new do |t|
t.pattern = '**/*.rb'
end

task :default => :test

Binary file added test/.sanity_test.rb.swp
Binary file not shown.
8 changes: 8 additions & 0 deletions test/sanity_test.rb
@@ -0,0 +1,8 @@
require 'minitest/autorun'
require "active_support/all"

describe nil do
it "must be blank" do
nil.blank?.must_equal true
end
end

0 comments on commit 7fc6053

Please sign in to comment.