# encoding: utf-8

require 'helper'

class TestMusic < Test::Unit::TestCase
  def test_genre
    assert_match /[A-z]|\W|\&\/+/, FFaker::Music.genre
  end

  def test_album
    assert_match /\s|[A-z]|\W|\d|\'|\?+/, FFaker::Music.album
  end

  def test_artist
    assert_match /\s|[A-z]|\W|\d|\'|\?|\&|\+|\.|\-+/, FFaker::Music.artist
  end

  def test_song
    assert_match /\s|[A-z]|\W|\d|\'|\?|\&|\+|\.|\-+/, FFaker::Music.song
  end
end
