2012-09-05 16:52:49 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe TreeHelper do
|
|
|
|
describe '#markup?' do
|
2014-07-28 05:47:27 -04:00
|
|
|
%w(textile rdoc org creole wiki mediawiki
|
|
|
|
rst adoc asciidoc asc).each do |type|
|
2012-09-05 16:52:49 -04:00
|
|
|
it "returns true for #{type} files" do
|
|
|
|
markup?("README.#{type}").should be_true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false when given a non-markup filename" do
|
|
|
|
markup?('README.rb').should_not be_true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|