Skip to content

Commit 0a88d63

Browse files
committed
Updated description. Removed non-repeatable SQLlite test
1 parent ca85198 commit 0a88d63

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ begin
1414
Jeweler::Tasks.new do |gem|
1515
gem.name = "browsercms"
1616
gem.version = Cms::VERSION
17-
gem.summary = %Q{BrowserCMS is a general purpose, open source Web Content Management System (CMS), written in Ruby on Rails.}
18-
gem.description = %Q{Web Content Management in Rails.}
17+
gem.summary = %Q{BrowserCMS is a general purpose, open source Web Content Management System (CMS) written in Ruby on Rails. Designed for web developers who want to create great looking websites while using standard Rails tools for customizing it. }
18+
gem.description = %Q{General purpose Web Content Management in Rails.}
1919
gem.email = "github@browsermedia.com"
2020
gem.homepage = "http://www.browsercms.org"
2121
gem.authors = ["BrowserMedia"]

test/functional/cms/dashboard_controller_test.rb

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,4 @@ def test_index
1313
assert_response :success
1414
assert_select "title", "Dashboard"
1515
end
16-
17-
# This is a bit of a hack. Ideally would like the entire
18-
# test suite to run against both MySQL and SQLite
19-
# But this was the only SQLite test to fail.
20-
#
21-
# If this test fails with a "no such table" error, you
22-
# will need to load the sqlite3 test database (most easily
23-
# by switching the test database to use sqlite3 and running
24-
# rake). After you do that, you can switch
25-
# the test database configuration back.
26-
def test_index_with_sqlite
27-
ActiveRecord::Base.establish_connection(:test_sqlite3)
28-
begin
29-
test_index
30-
ensure
31-
ActiveRecord::Base.establish_connection(:test)
32-
end
33-
end
3416
end

0 commit comments

Comments
 (0)