mraa: rename from maa to mraa
[contrib/mraa.git] / tests / mraa_test.cxx
similarity index 60%
rename from tests/maa_test.cxx
rename to tests/mraa_test.cxx
index f610389..ab25202 100644 (file)
@@ -1,12 +1,12 @@
-#include <maa.h>
+#include <mraa.h>
 #include "gtest/gtest.h"
 #include "version.h"
 
 /* Careful, this test will only attempt to check the returned version is valid,
  * it doesn't try to check the version is a release one.
  */
-TEST (basic, maa_get_version) {
+TEST (basic, mraa_get_version) {
     char bar[64];
-    strcpy(bar, maa_get_version());
-    ASSERT_STREQ(maa_get_version(), gVERSION);
+    strcpy(bar, mraa_get_version());
+    ASSERT_STREQ(mraa_get_version(), gVERSION);
 }