diff --git a/modules/t/regulatoryMotifAdaptor.t b/modules/t/regulatoryMotifAdaptor.t
new file mode 100644
index 0000000000000000000000000000000000000000..6402513739baa4ed5cc88b5ba19b2fecfb82173b
--- /dev/null
+++ b/modules/t/regulatoryMotifAdaptor.t
@@ -0,0 +1,63 @@
+use strict;
+use Bio::EnsEMBL::Test::TestUtils;
+
+use Bio::EnsEMBL::Test::MultiTestDB;
+
+
+BEGIN { $| = 1;
+	use Test;
+	plan tests => 10;
+}
+
+my $multi_db = Bio::EnsEMBL::Test::MultiTestDB->new;
+my $db = $multi_db->get_DBAdaptor('core');
+
+my $verbose = 0;
+
+# Test Creation
+
+my $rma = $db->get_RegulatoryMotifAdaptor();
+
+ok(ref($rma) && $rma->isa('Bio::EnsEMBL::DBSQL::RegulatoryMotifAdaptor'));
+
+#
+# Test fetch_by_dbID
+#
+
+my $rm = $rma->fetch_by_dbID(1);
+ok($rm->name() eq 'motif1');
+ok($rm->dbID == 1);
+ok($rm->type eq 'miRNA_target');
+
+#
+# Test fetch_by_name
+#
+$rm = $rma->fetch_by_name('motif1');
+ok($rm->name() eq 'motif1');
+ok($rm->dbID() == 1);
+ok($rm->type() eq 'miRNA_target');
+
+#
+# Test fetch_all_by_type
+#
+ok(@{$rma->fetch_all_by_type('promoter')} == 2);
+
+#
+# Test store
+#
+
+$multi_db->save('core', 'regulatory_motif');
+
+$rm = Bio::EnsEMBL::RegulatoryMotif->new(-NAME => 'test_store',
+					 -TYPE => 'promoter');
+
+$rma->store($rm);
+
+ok($rm->dbID && $rm->adaptor());
+
+$rm = $rma->fetch_by_dbID($rm->dbID);
+
+ok($rm->name eq 'test_store');
+ok($rm->type eq 'promoter');
+
+$multi_db->restore('core', 'regulatory_motif');