Skip to content

Commit

Permalink
more 1.2.6 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
evan committed Jan 15, 2008
1 parent c59d4b6 commit 6e718ef
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
2 changes: 2 additions & 0 deletions test/integration/app/config/environment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@
# Dependencies.log_activity = true

ENV['RAILS_ASSET_ID'] = Time.now.to_i.to_s

require 'tagging_extensions'
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
class CreateOrganicSubstances < ActiveRecord::Migration
def self.up
create_table :organic_substances do |t|
t.string "type"
t.timestamps
t.column :type, :string
end
end

Expand Down
2 changes: 1 addition & 1 deletion test/integration/app/test/unit/bone_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class BoneTest < ActiveSupport::TestCase
class BoneTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class DoubleStiParentRelationshipTest < ActiveSupport::TestCase
class DoubleStiParentRelationshipTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
2 changes: 1 addition & 1 deletion test/integration/app/test/unit/double_sti_parent_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class DoubleStiParentTest < ActiveSupport::TestCase
class DoubleStiParentTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
2 changes: 1 addition & 1 deletion test/integration/app/test/unit/organic_substance_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class OrganicSubstanceTest < ActiveSupport::TestCase
class OrganicSubstanceTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class SingleStiParentRelationshipTest < ActiveSupport::TestCase
class SingleStiParentRelationshipTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
2 changes: 1 addition & 1 deletion test/integration/app/test/unit/single_sti_parent_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class SingleStiParentTest < ActiveSupport::TestCase
class SingleStiParentTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
2 changes: 1 addition & 1 deletion test/integration/app/test/unit/stick_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class StickTest < ActiveSupport::TestCase
class StickTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down
2 changes: 1 addition & 1 deletion test/integration/app/test/unit/stone_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/../test_helper'

class StoneTest < ActiveSupport::TestCase
class StoneTest < Test::Unit::TestCase
# Replace this with your real tests.
def test_truth
assert true
Expand Down

0 comments on commit 6e718ef

Please sign in to comment.