toxon
/
tox.rb
Archived
1
0
Fork 0

Rename multimedia files

This commit is contained in:
Braiden Vasco 2018-05-01 10:22:15 +00:00
parent 010972becb
commit 8cb8b61ce0
No known key found for this signature in database
GPG Key ID: F1D3CA63437BDC6F
5 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ require 'opus_file'
NAME = 'AudioSendBot'
STATUS_MESSAGE = 'Call me'
TEST_FILE = File.expand_path('../multimedia/test.opus', __dir__).freeze
TEST_FILE = File.expand_path('../multimedia/opus.ogg', __dir__).freeze
AUDIO_BIT_RATE = 48

View File

@ -4,7 +4,7 @@ RSpec.describe OpusFile do
subject { described_class.new filename }
let :filename do
File.expand_path('../../multimedia/test.opus', __dir__).freeze
File.expand_path('../../multimedia/opus.ogg', __dir__).freeze
end
let(:vendor) { 'libopus 1.0.1-rc3' }

View File

@ -4,7 +4,7 @@ RSpec.describe VorbisFile do
subject { described_class.new filename }
let :filename do
File.expand_path('../../multimedia/test_vorbis.ogg', __dir__).freeze
File.expand_path('../../multimedia/vorbis.ogg', __dir__).freeze
end
let(:vendor) { 'Xiph.Org libVorbis I 20120203 (Omnipresent)' }