Sha256: 6b76005020333feb56fc8126da494772534563ff3f9bf27bc8ff0ea11f60ea02
Contents?: true
Size: 433 Bytes
Versions: 19
Compression:
Stored size: 433 Bytes
Contents
# Tests for octopi core functionality go here. require File.join(File.dirname(__FILE__), 'test_helper') class TagTest < Test::Unit::TestCase include Octopi def setup fake_everything end context Tag do should "be able to find all tags" do tags = Tag.all(:user => "fcoury", :repository => "octopi") assert_not_nil tags assert 12, tags.size assert tags.first.is_a?(Tag) end end end
Version data entries
19 entries across 19 versions & 4 rubygems