guard-rails/spec/lib/guard/rails_spec.rb

16 lines
274 B
Ruby
Raw Normal View History

require 'spec_helper'
require 'guard/rails'
describe Guard::Rails do
let(:guard) { Guard::Rails.new(watchers, options) }
let(:watchers) { [] }
let(:options) { {} }
describe '#initialize' do
it "should initialize with options" do
guard
end
end
end