mingl 0.3.0

Minimal graphics library with abstract rendering backend and WebGL support
//!
//! This file serves as the entry point for the test suite of the `mingl` crate.
//! It aggregates various test modules to ensure the crate's functionality is correct.
//!

#[ allow( unused_imports ) ]
use test_tools::exposed::*;
#[ allow( unused_imports ) ]
use mingl as the_module;

/// The primary module containing all tests for the `mingl` crate.
mod tests
{
  #[ allow( unused_imports ) ]
  use super::*;

  /// Contains tests specifically related to `ndarray` functionalities.
  mod nd_test;

}