master/spec/guard_spec.rb
Thibaud Guillaume-Gentil c347c2c7e0 Added 1.8.6 compatibility
Closes #2.
2010-10-18 21:45:31 +02:00

14 lines
206 B
Ruby

require 'spec_helper'
describe Guard do
describe "get_guard_class" do
it "should return Guard::RSpec" do
Guard.get_guard_class('rspec').should == Guard::RSpec
end
end
end