Sha256: d82878af004feb74612907ca7f2641efe523753a838f8f56d7e73e5d73a9fb2f

Contents?: true

Size: 787 Bytes

Versions: 12

Compression:

Stored size: 787 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

BEGIN {
	require 'pathname'
	basedir = Pathname.new( __FILE__ ).dirname.parent.parent
	
	libdir = basedir + 'lib'
	extdir = basedir + 'ext'
	
	$LOAD_PATH.unshift( basedir ) unless $LOAD_PATH.include?( basedir )
	$LOAD_PATH.unshift( libdir ) unless $LOAD_PATH.include?( libdir )
	$LOAD_PATH.unshift( extdir ) unless $LOAD_PATH.include?( extdir )
}

require 'rspec'
require 'bluecloth'

require 'spec/lib/helpers'


#####################################################################
###	C O N T E X T S
#####################################################################

describe BlueCloth, "" do

	it "does something cool" do
		the_indented_markdown( <<-"---" ).should be_transformed_into(<<-"---").without_indentation
		---
		---
	end

end


Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/bluecloth-2.1.0/spec/bluecloth/TEMPLATE
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/bluecloth-2.1.0/spec/bluecloth/TEMPLATE
radiant-1.0.0 ruby-debug/ruby/1.8/gems/bluecloth-2.1.0/spec/bluecloth/TEMPLATE
bluecloth-2.1.0-x86-mswin32 spec/bluecloth/TEMPLATE
bluecloth-2.1.0-x86-mingw32 spec/bluecloth/TEMPLATE
bluecloth-2.1.0 spec/bluecloth/TEMPLATE
bluecloth-2.0.11 spec/bluecloth/TEMPLATE
bluecloth-2.0.11-x86-mswin32 spec/bluecloth/TEMPLATE
bluecloth-2.0.11-x86-mingw32 spec/bluecloth/TEMPLATE
bluecloth-2.0.11pre158-x86-mingw32 spec/bluecloth/TEMPLATE
bluecloth-2.0.11pre158-x86-mswin32 spec/bluecloth/TEMPLATE
bluecloth-2.0.11pre158 spec/bluecloth/TEMPLATE