Sha256: cb3813b17689a8726852d2b4eb1b71633c81e89ec812d9899d2f7627861a3f07
Contents?: true
Size: 435 Bytes
Versions: 1
Compression:
Stored size: 435 Bytes
Contents
require File.expand_path('../helper', __FILE__) require 'pp' class TestBasic < Test::Unit::TestCase def setup @video = FlickVimeo::Video.new(18017106) end def test_format assert_equal 'hd', @video.best_quality end def test_clip_id assert_equal 18017106, @video.clip_id end def test_video_file_url pp @video.config puts @video.video_file_url assert_not_nil @video.video_file_url end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
flickvimeo-1.0.0 | test/test_video.rb |