cirandas.net

ref: master

test/unit/article_helper_test.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
require 'test_helper'

class ArticleHelperTest < ActionView::TestCase
  include ArticleHelper
  include ButtonsHelper

  should 'render follow article button' do
    environment = Environment.default
    person =  fast_create(Person)
    profile = fast_create(Profile, :environment_id => environment)
    article = fast_create(Article, :profile_id => profile)
    link = following_button article, person
    assert_tag_in_string link, tag: 'a', attributes: {'title' => 'Follow'}
  end

end