Skip to content

Commit

Permalink
Rename the tester (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
XdoctorwhoZ authored Dec 30, 2024
1 parent 4ad2d77 commit 58c8adb
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ panduza_platform_core::plugin_interface!("vi");

//
// Import modules
mod attribute_tester;
mod daq;
mod repl;
mod tester;

//
// Export the producers of the plugin
pub fn plugin_producers() -> Vec<Box<dyn Producer>> {
let mut producers: Vec<Box<dyn Producer>> = vec![];
producers.push(repl::Package::default().boxed());
producers.push(daq::Package::default().boxed());
producers.push(attribute_tester::Package::default().boxed());
producers.push(tester::Package::default().boxed());
return producers;
}

Expand Down
2 changes: 1 addition & 1 deletion src/attribute_tester.rs → src/tester.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl Producer for Package {
}

fn model(&self) -> String {
"attribute_tester".to_string()
"tester".to_string()
}

fn description(&self) -> String {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 58c8adb

Please sign in to comment.