Sha256: b47eb5267a81a38496be90397c48ea3d299e7ebfab47e95ebc823a4ff8ce002c

Contents?: true

Size: 328 Bytes

Versions: 1

Compression:

Stored size: 328 Bytes

Contents

require 'test_helper'

class ViewTest < ActiveSupport::TestCase

  setup do
    @instance = ActionView::Base.new
  end

  test "should have conditional_tag method" do
    assert @instance.respond_to?(:conditional_tag)
  end

  test "should have active_menu? method" do
    assert @instance.respond_to?(:active_menu?)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tuning-0.0.9 test/view_test.rb