Skip to content

Commit cd81ea7

Browse files
committed
Do not ignore manifest. Update RUNNING_UNIT_TESTS.
1 parent f234575 commit cd81ea7

File tree

3 files changed

+46
-7
lines changed

3 files changed

+46
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ debug.log
44
pkg/
55
doc/
66
tasks/
7-
Manifest

Manifest

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
CHANGELOG
2+
lib/active_record/connection_adapters/sqlserver_adapter.rb
3+
lib/activerecord-sqlserver-adapter.rb
4+
lib/core_ext/active_record.rb
5+
lib/core_ext/dbi.rb
6+
Manifest
7+
MIT-LICENSE
8+
Rakefile
9+
README.rdoc
10+
RUNNING_UNIT_TESTS
11+
tasks/sqlserver.rake
12+
test/cases/aaaa_create_tables_test_sqlserver.rb
13+
test/cases/adapter_test_sqlserver.rb
14+
test/cases/attribute_methods_test_sqlserver.rb
15+
test/cases/basics_test_sqlserver.rb
16+
test/cases/calculations_test_sqlserver.rb
17+
test/cases/column_test_sqlserver.rb
18+
test/cases/connection_test_sqlserver.rb
19+
test/cases/eager_association_test_sqlserver.rb
20+
test/cases/execute_procedure_test_sqlserver.rb
21+
test/cases/inheritance_test_sqlserver.rb
22+
test/cases/method_scoping_test_sqlserver.rb
23+
test/cases/migration_test_sqlserver.rb
24+
test/cases/offset_and_limit_test_sqlserver.rb
25+
test/cases/pessimistic_locking_test_sqlserver.rb
26+
test/cases/query_cache_test_sqlserver.rb
27+
test/cases/schema_dumper_test_sqlserver.rb
28+
test/cases/specific_schema_test_sqlserver.rb
29+
test/cases/sqlserver_helper.rb
30+
test/cases/table_name_test_sqlserver.rb
31+
test/cases/transaction_test_sqlserver.rb
32+
test/cases/unicode_test_sqlserver.rb
33+
test/connections/native_sqlserver/connection.rb
34+
test/connections/native_sqlserver_odbc/connection.rb
35+
test/migrations/transaction_table/1_table_will_never_be_created.rb
36+
test/schema/sqlserver_specific_schema.rb

RUNNING_UNIT_TESTS

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@ The default names for the test databases are "activerecord_unittest" and
55
to update the connection adapter setups you want to test with in
66
test/connections/<your database>/connection.rb.
77

8+
The connection files make certain assumptions. For instance, the ODBC connection
9+
assumes you have a DSN setup that matches the name of the default database names.
10+
811

912
== Requirements
1013

1114
The following gems need to be installed. Make sure you have gems.github.com as a
12-
source. http://github.com/blog/97-github-loves-rubygems-1-2
15+
source. Info here. http://gems.github.com/
16+
17+
We use echoe for packagemanagement to rubyforge. Not needed really for the tests
18+
but since we need it... you need to install it.
1319

20+
* gem install echoe
1421
* gem install thoughtbot-shoulda -s http://gems.github.com
1522
* gem install mocha
1623

@@ -21,11 +28,8 @@ is assumed to exist:
2128
#{RAILS_ROOT}/vendor/plugins/adapters/sqlserver
2229
#{RAILS_ROOT}/vendor/rails/activerecord/test
2330

24-
Define a user named 'rails' in SQL Server with all privileges granted. Use an empty
25-
password for user 'rails', or alternatively use the OSQLPASSWORD environment variable
26-
which allows you to set a default password for the current session.
27-
28-
Then run "rake create_databases".
31+
Define a user named 'rails' in SQL Server with all privileges granted for the
32+
test databases. Use an empty password for said user.
2933

3034

3135
== Running with Rake

0 commit comments

Comments
 (0)