summaryrefslogtreecommitdiff
path: root/test/nanoparticles.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/nanoparticles.rb')
-rw-r--r--test/nanoparticles.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/nanoparticles.rb b/test/nanoparticles.rb
new file mode 100644
index 0000000..4fc04ff
--- /dev/null
+++ b/test/nanoparticles.rb
@@ -0,0 +1,12 @@
+require_relative "setup.rb"
+
+class NanoparticleTest < MiniTest::Test
+
+ MODENA = File.join DATA_DIR,"MODENA-EC50_EC25.csv"
+
+ def test_import
+ Import::Enanomapper.import
+ assert_operator Nanoparticle.count , :>, 570, "Only #{Nanoparticle.count} nanoparticles imported"
+ end
+
+end