Skip to content
Snippets Groups Projects
Commit 013f89d0 authored by Cédric Boutillier's avatar Cédric Boutillier
Browse files

run tests with ruby-tests.rake instead of ruby-test-files.yaml

parent 678ddcea
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,10 @@ ruby-dataobjects-mysql (0.10.8-1) unstable; urgency=low
* New upstream release
* Bump Standards-Version to 3.9.3 (no change needed)
* Use official DEP5 copyright format URL
* Use ruby-tests.rake to run the tests to circumvent the fact that tests are
not run automatically with RSpec >= 2.8.0.
-- Cédric Boutillier <cedric.boutillier@gmail.com> Sun, 04 Mar 2012 16:54:22 +0100
-- Cédric Boutillier <cedric.boutillier@gmail.com> Sat, 21 Apr 2012 15:29:17 +0200
ruby-dataobjects-mysql (0.10.7-1) unstable; urgency=low
......
......@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Deepak Tripathi <deepak@debian.org>, Cédric Boutillier <cedric.boutillier@gmail.com>
DM-Upload-Allowed: yes
Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.10~), libmysqlclient-dev (>= 5.1), mysql-server-5.1, ruby-dataobjects (>= 0.10.8~), ruby-rspec (>= 2.5)
Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.10~), libmysqlclient-dev (>= 5.1), mysql-server-5.1, ruby-dataobjects (>= 0.10.8~), ruby-rspec (>= 2.5), rake
Standards-Version: 3.9.3
Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-dataobjects-mysql.git
Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-dataobjects-mysql.git;a=summary
......
---
- spec/command_spec.rb
- spec/connection_spec.rb
- spec/encoding_spec.rb
- spec/error/sql_error_spec.rb
- spec/reader_spec.rb
- spec/result_spec.rb
- spec/spec_helper.rb
- spec/typecast/array_spec.rb
- spec/typecast/bigdecimal_spec.rb
- spec/typecast/boolean_spec.rb
- spec/typecast/byte_array_spec.rb
- spec/typecast/class_spec.rb
- spec/typecast/date_spec.rb
- spec/typecast/datetime_spec.rb
- spec/typecast/float_spec.rb
- spec/typecast/integer_spec.rb
- spec/typecast/nil_spec.rb
- spec/typecast/other_spec.rb
- spec/typecast/range_spec.rb
- spec/typecast/string_spec.rb
- spec/typecast/time_spec.rb
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = './spec/*_spec.rb'
end
task :default => :spec
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment