Skip to content

Commit

Permalink
add meaningless test placeholder lol
Browse files Browse the repository at this point in the history
  • Loading branch information
tippenein authored and hugocaillard committed Dec 6, 2023
1 parent 43ad875 commit 9646152
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/clarity-repl/src/repl/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,7 @@ impl ClarityInterpreter {

#[cfg(test)]
mod tests {

use super::*;
use crate::test_fixtures::clarity_contract::ClarityContractBuilder;
use clarity::{
Expand All @@ -822,6 +823,14 @@ mod tests {
assert_eq!(interpreter.get_tx_sender(), tx_sender);
}

#[test]
fn test_get_block_time() {
let mut interpreter =
ClarityInterpreter::new(StandardPrincipalData::transient(), Settings::default());
let bt = interpreter.get_block_time();
assert_ne!(bt, 0); // TODO placeholder
}

#[test]
fn test_set_tx_sender() {
let mut interpreter =
Expand Down

0 comments on commit 9646152

Please sign in to comment.