Sha256: 9f1af8934cce656a788e4d4fbf70f42a58cdf6db46ba6bf6431c424ad5ae0be5
Contents?: true
Size: 614 Bytes
Versions: 30
Compression:
Stored size: 614 Bytes
Contents
require 'spec_helper' # Generators are not automatically loaded by Rails require 'generators/rspec/observer/observer_generator' describe Rspec::Generators::ObserverGenerator do # Tell the generator where to put its output (what it thinks of as Rails.root) destination File.expand_path("../../../../../tmp", __FILE__) subject { file('spec/models/posts_observer_spec.rb') } before do prepare_destination run_generator %w(posts) end describe 'the spec' do it { should exist } it { should contain(/require 'spec_helper'/) } it { should contain(/describe PostsObserver/) } end end
Version data entries
30 entries across 25 versions & 5 rubygems