Restructure test suite
Change-Id: Ibbd4bbb27203f9ffa89ae3e3a36b16f455b3523c
diff --git a/t/fixtures.t b/t/fixtures.t
index ea0047c..598b918 100644
--- a/t/fixtures.t
+++ b/t/fixtures.t
@@ -4,9 +4,9 @@
use Mojo::File qw/path/;
# Get the fixture path
-my $fixtures_path = path(Mojo::File->new(__FILE__)->dirname, 'fixtures');
+my $mock_server = path(Mojo::File->new(__FILE__)->dirname, 'server')->child('mock.pl');
-my $t = Test::Mojo->new($fixtures_path->child('fake_backend.pl'));
+my $t = Test::Mojo->new($mock_server);
$t->get_ok('/')
->status_is(200)