#!/bin/bash

set -eu
set -o pipefail

number=            # empty string!
# if test $number = 1
if test "$number" = 1
then
    echo something
fi
