def test_transcribe_multichannel_file(capsys):
    transcribe_file_with_multichannel(
        os.path.join(RESOURCES, 'Google_Gnome.wav'))
    out, err = capsys.readouterr()

    assert 'OK Google stream stranger things from Netflix to my TV' in out
def test_transcribe_multichannel_file(capsys):
    transcribe_file_with_multichannel()
    out, err = capsys.readouterr()

    assert 'OK Google stream stranger things from Netflix to my TV' in out
예제 #3
0
def test_transcribe_multichannel_file(capsys):
    transcribe_file_with_multichannel()
    out, err = capsys.readouterr()

    assert 'OK Google stream stranger things from Netflix to my TV' in out
def test_transcribe_multichannel_file(capsys):
    transcribe_file_with_multichannel(
        os.path.join(RESOURCES, 'Google_Gnome.wav'))
    out, err = capsys.readouterr()

    assert 'OK Google stream stranger things from Netflix to my TV' in out