Skip to content

Commit

Permalink
Skip active record during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Mayer committed Mar 23, 2013
1 parent fb08191 commit a9b8070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion features/config.feature
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Feature: Command Line

Background:
Given I run `rails new heroku_san_test --quiet --force --database=postgresql --skip-bundle --skip-javascript --skip-test-unit --skip-sprockets`
Given I run `rails new heroku_san_test --quiet --force --skip-active-record --skip-bundle --skip-javascript --skip-test-unit --skip-sprockets`
And I cd to "heroku_san_test"
And I overwrite "Gemfile" with:
"""
Expand Down
2 changes: 1 addition & 1 deletion features/step_definitions/remote_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'godot'

Given /^I have a new Rails project$/ do
cmd = "rails new test_app --quiet --force --database=postgresql --skip-javascript --skip-test-unit --skip-sprockets"
cmd = "rails new test_app --quiet --force --skip-active-record --skip-bundle --skip-javascript --skip-test-unit --skip-sprockets"
run_clean unescape(cmd)
end

Expand Down

0 comments on commit a9b8070

Please sign in to comment.