require 'test_helper' class NanocFuel::Helpers::FacebookTest < MiniTest::Unit::TestCase include NanocFuel::Helpers::Facebook def test_fb_init html = %q{ } assert_equal compact(html), compact(fb_init('12345')) end def test_fb_comments html = %q{ } assert_equal compact(html), compact(fb_comments('http://example.com', '10', '520')) end def test_fb_like_btn html = %q{ } assert_equal compact(html), compact(fb_like_btn("standard", "450", "true", "true")) end end