mirror of
https://github.com/jekyll/jekyll.git
synced 2026-04-28 03:01:03 -04:00
Compare commits
5 Commits
book
...
ruby-1.9.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
75b93e3fa5 | ||
|
|
dc7a7d0090 | ||
|
|
4aae2a7bc7 | ||
|
|
e53a5407b9 | ||
|
|
e054202c2b |
@@ -35,6 +35,7 @@ h2. Developer Dependencies
|
||||
* Shoulda: Test framework (Ruby)
|
||||
* RR: Mocking (Ruby)
|
||||
* RedGreen: Nicer test output (Ruby)
|
||||
* RDiscount: Discount Markdown Processor (Ruby)
|
||||
|
||||
h2. License
|
||||
|
||||
|
||||
@@ -7,7 +7,6 @@ require 'RedCloth'
|
||||
require 'rdiscount'
|
||||
|
||||
require 'test/unit'
|
||||
require 'redgreen'
|
||||
require 'shoulda'
|
||||
require 'rr'
|
||||
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
require 'rubygems'
|
||||
gem 'test-unit'
|
||||
require 'test/unit'
|
||||
|
||||
# for some reason these tests fail when run via TextMate
|
||||
# but succeed when run on the command line.
|
||||
|
||||
tests = Dir["#{File.dirname(__FILE__)}/test_*.rb"]
|
||||
tests = Dir[File.expand_path("#{File.dirname(__FILE__)}/test_*.rb")]
|
||||
tests.each do |file|
|
||||
require file
|
||||
end
|
||||
@@ -1,3 +1,5 @@
|
||||
# coding: utf-8
|
||||
|
||||
require File.dirname(__FILE__) + '/helper'
|
||||
|
||||
class TestTags < Test::Unit::TestCase
|
||||
|
||||
Reference in New Issue
Block a user