Skip to content

Commit

Permalink
Rename test to standard test name
Browse files Browse the repository at this point in the history
Only test *_test.rb files
  • Loading branch information
teeparham committed May 28, 2014
1 parent 3350d8a commit 208b5fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -5,6 +5,6 @@ task default: [:test]

Rake::TestTask.new(:test) do |t|
t.libs << 'test'
t.test_files = %w(test/**/*.rb)
t.test_files = %w(test/**/*_test.rb)
t.verbose = false
end
2 changes: 1 addition & 1 deletion test/tc_basic.rb → test/basic_test.rb
Expand Up @@ -5,7 +5,7 @@ module RGeo
module GeoJSON
module Tests # :nodoc:

class TestGeoJSON < Minitest::Test # :nodoc:
class BasicTest < Minitest::Test # :nodoc:


def setup
Expand Down

0 comments on commit 208b5fc

Please sign in to comment.