Skip to content

Commit

Permalink
test files’ names improved
Browse files Browse the repository at this point in the history
  • Loading branch information
bfontaine committed Oct 22, 2012
1 parent b83fe3e commit cc5ff09
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions graphs.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'graphs'
s.version = '0.1.5'
s.version = '0.1.6'
s.date = Time.now

s.summary = 'Utilities to manipulate graph files'
Expand All @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/bfontaine/Graphs.rb'

s.files = ['lib/graph.rb', 'lib/graphs/gdf.rb']
s.test_files = Dir.glob('tests/tests_*.rb')
s.test_files = Dir.glob('tests/*_tests.rb')
s.require_path = 'lib'
s.platform = Gem::Platform::CURRENT
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 5 additions & 3 deletions tests/tests.rb
@@ -1,6 +1,8 @@
#! /usr/bin/ruby1.9.1
# -*- coding: UTF-8 -*-
require 'test/unit'
require_relative './tests_graph'
require_relative './tests_gdf'
require_relative './tests_gexf'

for t in Dir.glob(File.dirname(__FILE__)+'/*_tests.rb')
require t
end

0 comments on commit cc5ff09

Please sign in to comment.