Skip to content

Commit

Permalink
Fixed ticket #248 - remove pending specs for sqlite3
Browse files Browse the repository at this point in the history
  • Loading branch information
John W Higgins authored and John W Higgins committed May 21, 2008
1 parent 3d45177 commit 09f3706
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions dm-aggregates/spec/integration/aggregates_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ class Country
end

it 'should provide the lowest value of a BigDecimal property' do
pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
Country.min(:gold_reserve_value).should be_kind_of(BigDecimal)
Country.min(:gold_reserve_value).should == BigDecimal('1217050983400.0')
end
Expand Down Expand Up @@ -168,7 +167,7 @@ class Country
end

it 'should provide the highest value of a BigDecimal property' do
pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
# pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
Country.max(:gold_reserve_value).should == BigDecimal('22589877164500.0')
end

Expand Down Expand Up @@ -221,7 +220,7 @@ class Country

describe 'with a property name' do
it 'should provide the sum of values for an Integer property' do
pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
# pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
Dragon.sum(:toes_on_claw).should == 12

total_population = 1330044605 + 303824646 + 191908598 + 140702094 +
Expand All @@ -237,7 +236,7 @@ class Country
end

it 'should provide the sum of values for a BigDecimal property' do
pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
# pending 'Does not provide correct results with SQLite3' if HAS_SQLITE3
Country.sum(:gold_reserve_value).should == BigDecimal('37090059214100.0')
end

Expand Down

0 comments on commit 09f3706

Please sign in to comment.